home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / dpreview.dpr < prev    next >
Encoding:
Text File  |  2001-10-16  |  409 b   |  18 lines

  1. program DPreview;
  2.  
  3. uses
  4.   Forms,
  5.   Preview in 'Preview.pas' {PreviewForm},
  6.   PopUp in 'PopUp.pas' {FormPopUp},
  7.   Properties in 'Properties.pas' {FormProperties};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TPreviewForm, PreviewForm);
  14.   Application.CreateForm(TFormPopUp, FormPopUp);
  15.   Application.CreateForm(TFormProperties, FormProperties);
  16.   Application.Run;
  17. end.
  18.